@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/HFR> .

ex:Variable
    a 
        iop:Variable ;
    rdfs:label 
        "GDOP threshold quality flag " ;
    rdfs:comment 
        """QC flags resulting from setting a threshold on GDOP. Setting a threshold on GDOP for total combination avoids the combination of radials with an intersection angle below a certain value.""" ;
    iop:hasObjectOfInterest 
        ex:OoI ;
    iop:hasProperty 
        ex:Prop ;
    iop:hasConstraint 
        [ a iop:Constraint ;
             rdfs:label "over threshold value" ;
             iop:constrains ex:Prop ;
        ] .

ex:OoI
    a 
        iop:Entity ;
    rdfs:label 
        "GDOP" .

ex:Prop
    a 
        iop:Property ;
    rdfs:label 
        "quality flag" .
